home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 07 / 3 / DISK0731.ZIP / NAMES < prev    next >
Text File  |  1985-03-31  |  1KB  |  31 lines

  1.                      NAMES
  2.  
  3.  
  4.      A file name consists of a prefix, an 
  5. optional separator (the period "."), and an 
  6. optional extension.  A prefix is at most eight 
  7. characters in length, an extension is at most 
  8. three.  Both prefixes and extensions may consist 
  9. of any character except the period and the null 
  10. (control @).  Implanting obscure characters in 
  11. either can form a crude sort of file security 
  12. (at least they are hard to enter on the 
  13. keyboard) but good practice is to restrict the 
  14. character set to letters, digits, the underscore 
  15. ("_") and the dash ("-").
  16.  
  17.      Extensions are used to distinguish, 
  18. somewhat arbitrarily, between types of files.  
  19. EXE and COM files are presumed to be executable.  
  20. The meaning of most others is established by 
  21. convention.  The period without an extension is 
  22. equivalent to a blank extension.
  23.  
  24.      A path name consists of a file name 
  25. preceded by directory names separated by the 
  26. back slash ("\").  LOCATE returns as many of the 
  27. directory names as necessary to locate the file 
  28. from the directory from which INDEX was run.
  29.  
  30.      LOCATE does not use volume names.
  31.